home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-G / German MiniCad Demo (Click Me!) / German MiniCad Demo (Click Me!).rsrc / STR#_7021.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  3.1 KB  |  89 lines

  1. SetSelect(ObjectHandle : HANDLE);
  2.  
  3. Selects the object that is connected to ObjectHandle
  4.  
  5. SetDSelect(ObjectHandle : HANDLE);
  6.  
  7. Deselects the object that is connected to ObjectHandle
  8.  
  9. SetName(ObjectHandle : HANDLE; Name : STRING);
  10.  
  11. Assigns the specifed Name to the object that is connected to ObjectHandle
  12.  
  13. SetClass(ObjectHandle : HANDLE;  Class : STRING);
  14.  
  15. Assigns the specifed Class to the object that is connected to ObjectHandle
  16.  
  17. SetFPat(ObjectHandle : HANDLE;  FillPattern : INTEGER);
  18.  
  19. Assigns the specifed FillPattern to the object that is connected to ObjectHandle
  20.  
  21. SetLW(ObjectHandle : HANDLE;  LineWeight : INTEGER);
  22.  
  23. Assigns the specifed LineWeight to the object that is connected to ObjectHandle
  24.  
  25. SetLS(ObjectHandle : HANDLE;  LineStyle : INTEGER);
  26.  
  27. Assigns the specifed LineStyle to the object that is connected to ObjectHandle
  28.  
  29. SetBBox(ObjectHandle : HANDLE;  X1,Y1,X2,Y2 : REAL);
  30.  
  31. Assigns the specifed bounding box coordinates X1,Y1,X2,Y2  to the object that is connected to ObjectHandle
  32.  
  33. SetPenFore(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  34.  
  35. Assigns the specifed pen foreground color to the object that is connected to ObjectHandle
  36.  
  37. SetPenBack(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  38.  
  39. Assigns the specifed pen background color to the object that is connected to ObjectHandle
  40.  
  41. SetFillFore(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  42.  
  43. Assigns the specifed fill foreground color to the object that is connected to ObjectHandle
  44.  
  45. SetFillBack(ObjectHandle : HANDLE; Red,Green,Blue : LONGINT);
  46.  
  47. Assigns the specifed fill background color to the object that is connected to ObjectHandle
  48.  
  49. SetSegPt1(ObjectHandle : HANDLE;  X,Y : REAL);
  50.  
  51. Changes the first end point of a line to the new location specified by X,Y to the line connected by ObjectHandle
  52.  
  53. SetSegPt2(ObjectHandle : HANDLE;  X,Y : REAL);
  54.  
  55. Changes the second end point of a line to the new location specified by X,Y to the line connected by ObjectHandle
  56.  
  57. SetPolyPt(ObjectHandle : HANDLE;  Index : INTEGER;  X,Y : REAL);
  58.  
  59. Changes the location of the polygon's vertex, which is specified by Index to the new location specified by X,Y of the polygon that is connected to ObjectHandle
  60.  
  61. SetArc(ObjectHandle : HANDLE;  #StartAngle,#ArcAngle : REAL);
  62.  
  63. Changes the start and arc angles of the arc that ic connected to ObjectHandle
  64.  
  65. Set3DRot(ObjectHandle : HANDLE;  #X,#Y,#Z,XCenter,YCenter,ZCenter : REAL);
  66.  
  67. Rotates a 3D object that is connected to ObjectHandle at the amount specified by #X,#Y,#Z around the point specified by XCenter,YCenter,ZCenter
  68.  
  69. Set3DInfo(ObjectHandle : HANDLE;  Height,Width,Depth : REAL);
  70.  
  71. Changes the Height,Width,Depth of a 3D object that is connected to ObjectHandle
  72.  
  73. Move3DObj(ObjectHandle : HANDLE;  ‚àÜX,‚àÜY,‚àÜZ : REAL);
  74.  
  75. Moves a 3D object connected to ObjectHandle relative to it current position specified by ‚àÜX,‚àÜY,‚àÜZ
  76.  
  77. SelectSS(ObjectHandle : HANDLE);
  78.  
  79. Activates the spreadsheet that is connected by ObjectHandle
  80.  
  81. SetText(ObjectHandle : HANDLE; Str : STRING);
  82.  
  83. Changes the text contains of a text object that is connected to ObjectHandle
  84.  
  85. HMove(h : HANDLE; XOff,YOff : REAL);
  86.  
  87. Offsets object connected to h specified distance from current position.
  88.  
  89.